e7b814c5496468630cd040f24954f01fc3d8d434,java/java-psi-impl/src/com/intellij/psi/impl/java/stubs/hierarchy/IndexTree.java,Unit,Unit,#String#number#Import[]#ClassDecl[]#,81
Before Change
public final ClassDecl[] myDecls;
public Unit(@Nullable String packageName, byte unitType, Import[] imports, ClassDecl[] decls) {
this(hashQualifiedName(StringUtil.notNullize(packageName)), unitType, imports, decls);
}
public Unit(@NotNull int[] packageName, byte unitType, Import[] imports, ClassDecl[] decls) {
myPackageName = packageName;
After Change
public final ClassDecl[] myDecls;
public Unit(@Nullable String packageName, byte unitType, Import[] imports, ClassDecl[] decls) {
myPackageName = StringUtil.notNullize(packageName);
myUnitType = unitType;
this.imports = imports;
myDecls = decls;